home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / util / arc / xadmaster000.lha / xad / Install < prev    next >
Text File  |  2000-12-03  |  2KB  |  94 lines

  1. ; little dirty install script for xadmaster system
  2.  
  3. ; $VER: Install 1.3 (02.10.2000) by SDI
  4.  
  5. (copylib
  6.   (help @copylib-help)
  7.   (prompt "Copying xadmaster.library")
  8.   (source "Libs/xadmaster.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (help @copyfiles-help)
  15.   (prompt "Copying xadmaster.library clients")
  16.   (source "Libs/xad")
  17.   (dest "LIBS:xad")
  18.   (all)
  19.   (confirm)
  20. )
  21.  
  22. (copyfiles
  23.   (help @copyfiles-help)
  24.   (prompt "Copying shell tools")
  25.   (source "C")
  26.   (dest "C:")
  27.   (all)
  28.   (confirm)
  29. )
  30.  
  31. (set #dir
  32.   (askdir
  33.     (prompt "Where should the docs be installed?")
  34.     (help @askdir-help)
  35.     (default @default-dest)
  36.   )
  37. )
  38.  
  39. (set #catalog
  40.   (askchoice
  41.     (prompt "Select the language")
  42.     (help @askoptions-help)
  43.     (choices "deutsch" "english" "français" )
  44.     (default 1)
  45.   )
  46. )
  47.  
  48. (if (= #catalog 0) (
  49.   (copyfiles
  50.     (help @copyfiles-help)
  51.     (prompt "Copying xadmaster guide file and shell docs")
  52.     (source "Languages/deutsch")
  53.     (dest #dir)
  54.     (infos)
  55.     (all)
  56.     (confirm)
  57.   )
  58. ))
  59.  
  60. (if (= #catalog 1) (
  61.   (copyfiles
  62.     (help @copyfiles-help)
  63.     (prompt "Copying xadmaster guide file")
  64.     (source "xadmaster.guide")
  65.     (dest #dir)
  66.     (infos)
  67.     (all)
  68.     (confirm)
  69.   )
  70.  
  71.   (copyfiles
  72.     (help @copyfiles-help)
  73.     (prompt "Copying shell tool docs")
  74.     (source "Docs")
  75.     (dest #dir)
  76.     (infos)
  77.     (all)
  78.     (confirm)
  79.   )
  80. ))
  81.  
  82. (if (= #catalog 2) (
  83.   (copyfiles
  84.     (help @copyfiles-help)
  85.     (prompt "Copying xadmaster guide file and shell docs")
  86.     (source "Languages/français")
  87.     (dest #dir)
  88.     (infos)
  89.     (all)
  90.     (confirm)
  91.   )
  92. ))
  93.  
  94.